home *** CD-ROM | disk | FTP | other *** search
/ DC Comics: Collected Edit…& Graphic Novels Library / DC Comics: Collected Editions & Graphic Novels Library.iso / pc / scripts / grabdata_scripts.js < prev    next >
Encoding:
Text File  |  2003-05-16  |  1.4 KB  |  36 lines

  1. //************************************************************
  2. // This example is from JavaScript: The Definitive Guide, 3rd Edition.
  3. // That book and this example were Written by David Flanagan.
  4. // They are Copyright (c) 1996, 1997, 1998 O'Reilly & Associates.
  5. // This example is provided WITHOUT WARRANTY either expressed or implied.
  6. // You may study, use, modify, and distribute it for any purpose,
  7. // as long as this notice is retained.
  8. //<!-- Modified by:  Kenneth C. Devoe, WildStorm Productions -->
  9.  
  10. /*
  11.  * Function getArgs() parses comma-separated name=value argument pairs from
  12.  * the query string of the URL. It stores the name=value pairs in 
  13.  * properties of an object and returns that object.
  14.  */
  15.  
  16. function getArgs() {
  17.     var args = new Object();                   // Create the object.
  18.     var query = location.search.substring(1);  // Get query string.
  19.     var pairs = query.split("&");              // Break at ampersand.
  20.     for(var i = 0; i < pairs.length; i++) {
  21.     var pos = pairs[i].indexOf('=');           // Look for "name=value".
  22.     if (pos == -1){
  23.      continue;                                 // If not found, skip.
  24.     }
  25.     var argname = pairs[i].substring(0,pos);  // Extract the name.
  26.     var value = pairs[i].substring(pos+1);    // Extract the value.
  27.     args[argname] = unescape(value);          // Store as a property.
  28.     }
  29.     return args;                              // Return the object.
  30. }
  31.  
  32.  
  33. //------------------------------
  34.  
  35.  
  36.